type runtime.gcTrigger
13 uses
runtime (current package)
arena.go#L812: if t := (gcTrigger{kind: gcTriggerHeap}); t.test() {
malloc.go#L1231: if t := (gcTrigger{kind: gcTriggerHeap}); t.test() {
malloc.go#L1333: if t := (gcTrigger{kind: gcTriggerHeap}); t.test() {
malloc.go#L1424: if t := (gcTrigger{kind: gcTriggerHeap}); t.test() {
malloc.go#L1517: if t := (gcTrigger{kind: gcTriggerHeap}); t.test() {
malloc.go#L1590: if t := (gcTrigger{kind: gcTriggerHeap}); t.test() {
mgc.go#L500: gcStart(gcTrigger{kind: gcTriggerCycle, n: n + 1})
mgc.go#L574: type gcTrigger struct {
mgc.go#L602: func (t gcTrigger) test() bool {
mgc.go#L629: func gcStart(trigger gcTrigger) {
mgcpacer.go#L384: func (c *gcControllerState) startCycle(markStartTime int64, procs int, trigger gcTrigger) {
proc.go#L354: gcStart(gcTrigger{kind: gcTriggerTime, now: nanotime()})
proc.go#L6241: if t := (gcTrigger{kind: gcTriggerTime, now: now}); t.test() && forcegc.idle.Load() {